-
1 Type-Length-Value
"A method of organizing data that involves a Type code (16 bit), a specified length of a Value field (16 bit), and the data in the Value field (variable)." -
2 Type, Length, Value
"A method of organizing data that involves a Type code (16 bit), a specified length of a Value field (16 bit), and the data in the Value field (variable).""Type, Length, Value" -
3 type descriptor
"An object that defines the data type of an input, output or return parameter of a method instance object." -
4 generic method
"A method whose definition has placeholders, called generic type parameters, for one or more types used in the body of the method or as the types of the method's parameters. A user specifies real types (generic type arguments) for the type parameters when calling the generic method. Note that a method is not generic just because it is declared in a generic type. A method is generic only if it has type parameters of its own." -
5 generic type parameter list
"The list of generic type parameters of a generic type or method, specified as part of the definition of the generic type or generic method."English-Arabic terms dictionary > generic type parameter list
-
6 constructed generic type
"A generic type whose generic type parameters have been specified. A constructed type or method can be an open generic type if some of its type arguments are type parameters of enclosing types or methods, or a closed generic type if all of its type arguments are real types."نوع عام مُنشئ -
7 value type
"A data type that is represented by the type's actual value. If a value type is assigned to a variable, that variable is given a fresh copy of the value. (This is in contrast to a reference type, where assignment does not create a copy.) Value types are usually created on a method's stack frame, rather than in the garbage-collected heap. A value type can be boxed, which is a process that creates a corresponding reference type." -
8 open generic type
A constructed generic type in which one or more of the generic type arguments substituted for its generic type parameters is a type parameter of an enclosing generic type or method. Open generic types cannot be instantiated. -
9 generic type parameter
"In a generic type definition, a placeholder for a type that the user specifies (generic type argument) when creating instances of a generic type or when calling a generic method." -
10 generic type argument
The type that the user specifies when creating instances of a generic type or when calling a generic method. -
11 delegate
"A type that references a method. Once a delegate is assigned a method, it behaves exactly like that method. Delegates are roughly similar to function pointers in C++; however, they are type-safe and secure." -
12 imperative security check
"A security check that occurs when a security method is called within the code that is being protected. This type of check can be data-driven and can be isolated to a single location within an object or method. For example, if the name of a file to be protected is known only at run time, an imperative security check can be invoked by passing the file name as a parameter to a security method." -
13 MIME
A common method for transmitting non-text data through Internet e-mail. MIME encodes non-text data as ASCII text and then decodes it back to its original format at the receiving end. A MIME header is added to the file which includes the type of data contained and the encoding method used. -
14 Multipurpose Internet Mail Extensions
A common method for transmitting non-text data through Internet e-mail. MIME encodes non-text data as ASCII text and then decodes it back to its original format at the receiving end. A MIME header is added to the file which includes the type of data contained and the encoding method used.English-Arabic terms dictionary > Multipurpose Internet Mail Extensions
-
15 argument
"A value that a function or a method uses to perform operations or calculations. The type of argument is specific to the function or method. Common arguments include numbers, text, cell references, and names." -
16 provider
"In a Web Parts connection, a server control that sends data to a consumer control. A provider can be a WebPart control or any type of server control, but must be designed to function as a provider. A provider must have a special callback method marked with a ConnectionProviderAttribute attribute in the source code. This method provides data to consumer controls in the form of an interface instance." -
17 consumer
"In a Web Parts connection, a server control that receives data from a provider control and processes or displays it. A consumer can be any type of server control, but must be designed to function as a consumer. A consumer must have a special callback method marked with a ConnectionConsumerAttribute attribute in the source code. This method receives data from the provider in the form of an interface instance." -
18 pessimistic locking
"A type of locking in which the page containing one or more records, including the record being edited, is unavailable to other users when you use the Edit method, and remains unavailable until you use the Update method." -
19 finite property
A method for scheduling resources that considers limits to the type of work a work center can perform at a given time. Finite property specifies the type of products or operations to be carried out at the same time at a work center. -
20 limited properties of work centers
A method for scheduling resources that considers limits to the type of work a work center can perform at a given time. Finite property specifies the type of products or operations to be carried out at the same time at a work center.English-Arabic terms dictionary > limited properties of work centers
- 1
- 2
См. также в других словарях:
Type system — Type systems Type safety Inferred vs. Manifest Dynamic vs. Static Strong vs. Weak Nominal vs. Structural Dependent typing Duck typing Latent typing Linear typing Uniqueness typing … Wikipedia
Method overriding — Method overriding, in object oriented programming, is a language feature that allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes. The… … Wikipedia
Method overloading — is a feature found in various programming languages such as Ada, C#, C++ and Java that allows the creation of several functions with the same name which differ from each other in terms of the type of the input and the type of the output of the… … Wikipedia
Type signature — is a term that is used in computer programming.A type signature defines the inputs and outputs for a function or method. A type signature includes at least the function name and the number of its parameters. In some programming languages, it may… … Wikipedia
Method overriding (programming) — Method overriding, in object oriented programming, is a language feature that allows a subclass to provide a specific implementation of a method that is already provided by one of its superclasses. The implementation in the subclass overrides… … Wikipedia
method — method, mode, manner, way, fashion, system are comparable when they denote the means taken or the plan or procedure followed in doing a kind of work or in achieving an end. Method may denote either an abstraction or a concrete procedure, but in… … New Dictionary of Synonyms
Type design — is the art of designing typefaces. Although the technology of printing text using movable type was invented in China, and despite the esteem which calligraphy held in that civilization, the vast number of Chinese characters meant that few… … Wikipedia
Type generalization — is a technique commonly used in refactoring. The idea is to draw on the benefits of object orientation and make more generalized types, thus enabling more code sharing, leading to better maintainability as there is less code to write. Too general … Wikipedia
Type polymorphism — In computer science, polymorphism is a programming language feature that allows values of different data types to be handled using a uniform interface. The concept of parametric polymorphism applies to both data types and functions. A function… … Wikipedia
Method (computer programming) — In object oriented programming, a method is a subroutine (or procedure or function) associated with a class. Methods define the behavior to be exhibited by instances of the associated class at program run time. Methods have the special property… … Wikipedia
Method signature — In computer programming, especially object oriented programming, a method is commonly identified by its unique method signature, which usually includes the method name, and the number, types and order of its parameters.[1] A method signature is… … Wikipedia